    /* 清除默认样式 */
    ul,
    ol {
        list-style: none;
    }

    * {
        padding: 0;
        margin: 0;
    }

    a:hover,
    a:visited,
    a:link,
    a:active {
        color: #333;
        text-decoration: none;

    }

    body {
        background-color: #f8f8f8;
      font-size:14px;
    }
 
 /* 头部 */
   .toptal {
    height: 582px;
    background: url("../new/images/list-top-bg.png");
    overflow: hidden;
}
    .menu-toggle{
    	display:none;

    }
header {
    font-size: 48px;
    color: #fee0ee;
    margin-top: 90px;
    margin-bottom: 125px;
    letter-spacing: 6px
}

.mainNav {
    overflow: hidden;
}

.nav {
    float: left;
    width: 800px;
    overflow: hidden;
    margin-top: 7px;
}

.nav .nav-item {
    float: left;

    height: 24px;
    line-height: 24px;
    border-right: 1px solid #aab0e0;
    padding: 0 40px;
}

.nav .nav-item a {
    color: #fee0ee;
    font-size: 22px;
}

.nav .nav-item:first-child {
    padding-left: 0 !important;
}

.nav .nav-item:last-child {
    border: none;
    padding-right: 0;
}

.nav-item.active a {
    color: #ffca08;

}

.right {
    float: right;
    width: 220px;
}

.right .button {
    float: left;
    width: 90px;
    height: 38px;
    border-radius: 16px;
    background-color: #fff;
    color: #0119ff;
    text-align: center;
    line-height: 38px;
    font-size: 20px;
    margin-left: 20px;
}

   /* 底部 */
   .footer {
    width: 100%;
    /* height: 300px; */
     height: 250px;
    background-color: #000;
    color: #fff;

}

.friendlyLink {
    display: flex;
    align-items: center;
    width: 1200px;
    border-bottom: 1px solid #dedede;
    padding-top: 50px;
    padding-bottom: 20px;
    position: relative;
}

.friendlyLink-title {
    margin-right: 20px;
    line-height: 38px;
    font-size: 20px;
}


.friendlyLink-nav {
}

.friendlyLink-nav>.fl-item {
    float: left;
    border: 1px solid #dedede;
    margin-right: 33px;
    height: 38px;
    line-height: 38px;
    background: url("../images2/ico-arrow.png") no-repeat right;
    cursor: pointer;
}

.friendlyLink-nav>.fl-item>div {
    padding: 0 42px 0 10px;
}

.friendlyLink-nav>.fl-item:first-child {
    background: none;
}

.friendlyLink-nav>.fl-item:last-child {
    margin: 0;
}

.footText {
    margin-top: 40px;
    text-align: center;
}


.copyright {
    text-align: center;
    margin-top: 15px;
}

.fix {
    position: absolute;
    top: -186px;
    width: 1140px;
    background-color: #fff;
    left: 0;
    max-height: 225px;
    border: 1px solid #dedede;
    overflow-y: scroll;
    padding: 10px 0px 10px 60px;
    display: none;
    animation-name: close;
    animation-duration: .5s;


}

.friendlyLink-nav>.fl-item.active {
    color: #000;
    background: url("../images2/ico-arrow-hover.png") no-repeat right;
    background-color: #fff;

}

.friendlyLink-nav>.fl-item.active .fix {
    display: block;
    animation-name: open;
    animation-duration: .5s;
}

.fix li {
    float: left;
    width: 270px;
    height: 30px;
}

.fix li a {
    color: #000;
}
.footText a{
    color: #fff !important;
}
.content {
    width: 1200px;
    margin: 0 auto;
}

@keyframes open {
    0% {
        top: 30px;
        height: 0;
    }

    100% {
        top: -196px;
        height: 225px;
    }
}

	/* 手机端适配 */
     @media screen and (max-width:768px) {
      
       /* 头部 */
       .toptal {
           background: unset;
           background-color: #2a39bf;
           height: 12rem
       }

       .content {
           width: 100%;
       }
        .toptal  .content {
           width: center;
       }
       .toptal .content header {
           font-size: 1.8rem;
           text-align: center;
           margin-top: 7rem;
           margin-bottom: 0;
       }

       .toptal .mainNav .nav {
           display: none;
           position: fixed;
           width: 100%;
           z-index: 100;
           height: 100%;
           top: 0;
           left: 0;
           background-color: rgba(255, 255, 255, 0.5);
           margin: 0;
       }
       .toptal .mainNav .right{
			position: absolute;
    		right: 10%;
   			top: 2em;
       }
	   .menu-toggle{
            position: absolute;
    		right: 0;
   			top: 0;
    		width: 40px;
   		    z-index: 100;
   		    padding: 2em 0;
            color:#fff !important;
         	display:block;
            width:fit-content
       }
       .menu-toggle .close{
         display:none;
       }
       .menu-toggle.active .list{
         display:none;
       }
       .menu-toggle.active .close{
         display:block;
       }
       .right{
       	width:fit-content;
       }
       .right .button{
         font-size:1em;
         width:5em;
         height:2em;
         line-height:2em
       }
       
       
       .nav .nav-item a {
           text-align: center;
       }

       .nav .nav-item {
           float: left;
           height: 24px;
           border-right: none;
           padding: 0;
           text-align: center;
           height: 5rem;
           line-height: 5rem;
           border-bottom: 1px solid #fff;
         width:100%;
       }

       .nav .nav-item:last-child {
           border-bottom: 1px solid #fff;
       }
       .nav .nav-item a{
       	color:#000 !important;
       }

       .notice-right {
           float: none;
           width: 90%;
           margin: 0 auto;
       }
         /* 底部 */
       .footer{
         height:auto;
       }
       
       .friendlyLink{
         width:100%;
         padding-top:20px;
         height:auto;
       }
      .friendlyLink-title{
        display:none
       }
       .friendlyLink-nav{
         float:none
       }
       .friendlyLink-nav>.fl-item{
		float:none;
          width:75%;
          margin:10px auto !important;
         position:relative;
       }
       .fix{
         width:calc(100% - 20px) !important;
         top:-238px;
         z-index:10;
         padding:10px;
       }
       .fix li{
       	width:100%
       }
		/* 列表页面 */
        .navigation{
        	padding:4px 0;
        }
        .innerRight {
          width:calc(100% - 40px) !important;
        }
        .innerRight-news a{
        	white-space: nowrap;
			text-overflow: ellipsis;
			overflow: hidden;
            display:block;
        }
       /* 内容页面 */
       .content.text{
       		display:block;
       }
       .article{
         float:none !important;
         width:calc(100% - 60px) !important
       }
       .recommend{
       	float:none !important;
         width:calc(100% - 60px) !important
       }
       .innerRight-news a{
         width:100% !important
       }


}

